home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / vcatch_detection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  65 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security 
  3. #
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(12004);
  9.  script_version("$Revision: 1.3 $");
  10.  name["english"] = "VCATCH detection";
  11.  
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is using the VCATCH program.  
  16. You should ensure that:
  17. - the user intended to install VCATCH (it is sometimes silently installed)
  18. - the use of VCATCH matches your corporate mandates and security policies.
  19.  
  20. To remove this sort of software, you may wish to check out ad-aware or spybot. 
  21.  
  22. See also : http://www.safersite.com/PestInfo/v/vcatch_3_0.asp 
  23.  
  24. Solution : Uninstall this software
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "VCATCH detection";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  38.  family["english"] = "Windows";
  39.  script_family(english:family["english"]);
  40.  
  41.  script_dependencies("smb_registry_full_access.nasl");
  42.  script_require_keys("SMB/registry_full_access");
  43.  
  44.  script_require_ports(139, 445);
  45.  exit(0);
  46. }
  47.  
  48.  
  49. # start the script
  50. if ( ! get_kb_item("SMB/registry_full_access") ) exit(0);
  51.  
  52. path[0] = "software\microsoft\windows\currentversion\app management\arpcache\vcatch - the personal virus catcher";
  53. path[1] = "software\microsoft\windows\currentversion\uninstall\vcatch - the personal virus catcher";
  54.  
  55.  
  56.  
  57. include("smb_nt.inc");
  58.  
  59. for (i=0; path[i]; i++) {
  60.        val = registry_key_exists(key:path[i]);
  61.        if(val != NULL) {security_hole(kb_smb_transport()); exit(0); } 
  62. }
  63.  
  64.  
  65.